home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 3: Dr. Sid.iso / pc / assets / sid-profile.dcr / 00058_characterstatistics button.ls < prev    next >
Encoding:
Text File  |  2001-07-22  |  394 b   |  27 lines

  1. global CScounter
  2.  
  3. on mouseUp
  4.   puppetSound(1, "Clicker")
  5.   if CScounter = 0 then
  6.     sprite(167).visible = 0
  7.     sprite(168).visible = 1
  8.     go("3DOpen")
  9.     CScounter = 1
  10.   else
  11.     if CScounter = 1 then
  12.       sprite(167).visible = 1
  13.       sprite(168).visible = 0
  14.       go("3DClose")
  15.       CScounter = 0
  16.     end if
  17.   end if
  18. end
  19.  
  20. on mouseEnter
  21.   cursor(280)
  22. end
  23.  
  24. on mouseLeave
  25.   cursor(-1)
  26. end
  27.